home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds3100.md / ttyAttach.h < prev   
C/C++ Source or Header  |  1992-12-18  |  856b  |  28 lines

  1. /*
  2.  * ttyAttach.h --
  3.  *
  4.  *    Declarations for things exported by devTtyAttach.c to the rest
  5.  *    of the device module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds3100.md/ttyAttach.h,v 9.0 89/09/12 15:02:30 douglis Stable $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVTTYATTACH
  20. #define _DEVTTYATTACH
  21.  
  22. #include "tty.h"
  23.  
  24. extern DevTty *        DevTtyAttach();
  25. extern void        DevTtyInit();
  26.  
  27. #endif /* _DEVTTYATTACH */
  28.